Upgrade Spring Boot from 3.3.3 to 3.5.3#93
Open
devin-ai-integration[bot] wants to merge 5 commits intoDevOpsfrom
Open
Upgrade Spring Boot from 3.3.3 to 3.5.3#93devin-ai-integration[bot] wants to merge 5 commits intoDevOpsfrom
devin-ai-integration[bot] wants to merge 5 commits intoDevOpsfrom
Conversation
Co-Authored-By: Samir Chaudhry <schaudhry123@gmail.com>
…ector-j Co-Authored-By: Samir Chaudhry <schaudhry123@gmail.com>
Co-Authored-By: Samir Chaudhry <schaudhry123@gmail.com>
…out configuration Co-Authored-By: Samir Chaudhry <schaudhry123@gmail.com>
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
Co-Authored-By: Samir Chaudhry <schaudhry123@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR upgrades Spring Boot incrementally from 3.3.3 to 3.5.3 (via 3.4.7), following the Spring Boot upgrade playbook. The upgrade includes dependency updates and fixes for deprecated APIs.
Changes:
mysql:mysql-connector-java:8.0.33→com.mysql:mysql-connector-j:9.3.0(pinned to fix Snyk security vulnerability)${java.version}instead of hardcoded 1.8MySQL8Dialect→MySQLDialect(deprecated in Hibernate 6.x)AntPathRequestMatcherwithlogoutUrl()Updates since last revision
Review & Testing Checklist for Human
logoutRequestMatcher(new AntPathRequestMatcher("/logout"))tologoutUrl("/logout"). This may affect HTTP method handling - verify logout works correctly with both GET and POST requests.Recommended test plan: Deploy to a test environment with MySQL, perform a full login/logout cycle, and verify core banking operations (account creation, transactions) work correctly.
Notes
BankappApplicationTests) requires a MySQL database connection and could not be run locally. Build compilation was verified to pass without errors or deprecation warnings.Link to Devin run: https://app.devin.ai/sessions/730eb71485c3455f990b5f7b1dd50c64
Requested by: Samir Chaudhry (@schaudhry123)